home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xitami_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(13841);
  8.  script_bugtraq_id(10778);
  9.  script_version ("$Revision: 1.2 $");
  10.  
  11.  
  12.  name["english"] = "Xitami Cross Site Scripting Vulnerability";
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote Xitami server is vulnerable to a cross-site scripting issue when
  17. sent a request with a malformed Host or User-Agent header.
  18.  
  19. An attacker may exploit this flaw the steal the authentication credentials
  20. of third-party users.
  21.  
  22. Solution : None at this time
  23. Risk factor : Low";
  24.  
  25.  script_description(english:desc["english"]);
  26.  summary["english"] = "Xitami XSS test";
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_GATHER_INFO);
  30.  
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "CGI abuses";
  34.  script_family(english:family["english"]);
  35.  script_dependencie("http_version.nasl");
  36.  script_require_ports("Services/www", 80);
  37.  exit(0);
  38. }
  39.  
  40. #
  41. include("http_func.inc");
  42. include("http_keepalive.inc");
  43. include("global_settings.inc");
  44.  
  45. port = get_http_port(default:80);
  46. if(! get_port_state(port)) exit(0);
  47.  
  48. banner = get_http_banner(port);
  49. if ( ! banner ) exit(0);
  50. if ( ! thorough_tests && "Xitami" >!< banner ) exit(0);
  51.  
  52.  
  53. req = string("GET / HTTP/1.1\r\n",
  54. "Host: ", get_host_name(), "\r\n",
  55. "User-Agent: <script>foo</script>\r\n\r\n");
  56.  
  57. soc = http_open_socket(port);
  58. if ( ! soc ) exit(0);
  59.  
  60. send(socket:soc, data:req);
  61.  
  62. r = http_recv(socket:soc);
  63. if ( ! r ) exit(0);
  64.  
  65. r = strstr(r, '\r\n\r\n');
  66. if ( ! r ) exit(0);
  67.  
  68. if ( "<script>foo</script>" >< r ) { security_warning(port); exit(0); }
  69.